home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / vhf / locator / readme.txt < prev   
Text File  |  1992-11-30  |  2KB  |  62 lines

  1. Lcator calculator for Amateur Radio
  2. by Ilkka Kontola OH3NJC:
  3.  
  4. The locator calculator calculates distance (in kilometers)
  5. and antenna direction (north 0 degrees, east 90 degrees etc) 
  6. from one site to another. The location of "from" and "to" 
  7. sites must be given using (Maidenhead) locator code.
  8. For instance locator kp11sn stands for 
  9. 61.5625 N / 24.5417 E.
  10.  
  11. The locator calculator is a Windows program. It has been built
  12. for Windows 3.1. It should work with Windows 3.0 in standard
  13. ("286") and enhanced ("386") modes but not in real mode.
  14. It may work with Windows NT and OS/2 v2 Windows 3.0 standard mode
  15. subsystem. 
  16.  
  17. You may freely copy and use this program.
  18. You may not sell this program. (Not that anyone would
  19. pay anything to get this very little program...)
  20. There is no guarantee at all.  What you see is what you get.
  21. You may not tamper the original executable.
  22.  
  23. The source code is available. If you modify the
  24. source and build a new version you must credit
  25. also the original author like this:
  26.  
  27.     Derived from Locator calculator
  28.     by Ilkka Kontola OH3NJC
  29.     version 921129
  30.  
  31. You can set default from locator by adding the following
  32. two lines to win.ini:
  33. [locator]
  34. fromdefault=your-default-locator
  35.  
  36. Make sure that you know what you are doing before editing win.ini!
  37.  
  38. About the source code:
  39.  
  40. The code frame has been generated using Protogen v2.2.
  41. (Protogen by Protoview Development Corporation)
  42.  
  43. The source code is for Borland C++ with Application
  44. Frameworks version 3.1.
  45.  
  46. The code is mainly C++ and it is using Borland ObjectWindows
  47. class library.
  48.  
  49. If you use Protogen to regenerate the source you must do
  50. the following modifications by hand:
  51.  
  52. - add loceng.c to the project
  53. - locate the following lines in locowl.cpp:
  54.     // not preserved during Protogen generation !
  55.     // append to module TMainWindow::SetupWindow() code
  56.        const int MAXLOC = 6+1;
  57.        char def_from[MAXLOC];
  58.        GetProfileString ("locator", "fromdefault", "", def_from, MAXLOC);
  59.        Editfromloc->SetText(def_from);
  60.     // end of not preserved....
  61. - follow the request to append them to proper place...
  62.